home *** CD-ROM | disk | FTP | other *** search
/ IRIX Base Documentation 2002 November / SGI IRIX Base Documentation 2002 November.iso / usr / share / catman / p_man / cat3 / SCSL / dlapmt.z / dlapmt
Encoding:
Text File  |  2002-10-03  |  3.1 KB  |  133 lines

  1.  
  2.  
  3.  
  4. DDDDLLLLAAAAPPPPMMMMTTTT((((3333SSSS))))                                                          DDDDLLLLAAAAPPPPMMMMTTTT((((3333SSSS))))
  5.  
  6.  
  7.  
  8. NNNNAAAAMMMMEEEE
  9.      DLAPMT - rearrange the columns of the M by N matrix X as specified by the
  10.      permutation K(1),K(2),...,K(N) of the integers 1,...,N
  11.  
  12. SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
  13.      SUBROUTINE DLAPMT( FORWRD, M, N, X, LDX, K )
  14.  
  15.          LOGICAL        FORWRD
  16.  
  17.          INTEGER        LDX, M, N
  18.  
  19.          INTEGER        K( * )
  20.  
  21.          DOUBLE         PRECISION X( LDX, * )
  22.  
  23. IIIIMMMMPPPPLLLLEEEEMMMMEEEENNNNTTTTAAAATTTTIIIIOOOONNNN
  24.      These routines are part of the SCSL Scientific Library and can be loaded
  25.      using either the -lscs or the -lscs_mp option.  The -lscs_mp option
  26.      directs the linker to use the multi-processor version of the library.
  27.  
  28.      When linking to SCSL with -lscs or -lscs_mp, the default integer size is
  29.      4 bytes (32 bits). Another version of SCSL is available in which integers
  30.      are 8 bytes (64 bits).  This version allows the user access to larger
  31.      memory sizes and helps when porting legacy Cray codes.  It can be loaded
  32.      by using the -lscs_i8 option or the -lscs_i8_mp option. A program may use
  33.      only one of the two versions; 4-byte integer and 8-byte integer library
  34.      calls cannot be mixed.
  35.  
  36. PPPPUUUURRRRPPPPOOOOSSSSEEEE
  37.      DLAPMT rearranges the columns of the M by N matrix X as specified by the
  38.      permutation K(1),K(2),...,K(N) of the integers 1,...,N. If FORWRD =
  39.      .TRUE.,  forward permutation:
  40.  
  41.           X(*,K(J)) is moved X(*,J) for J = 1,2,...,N.
  42.  
  43.      If FORWRD = .FALSE., backward permutation:
  44.  
  45.           X(*,J) is moved to X(*,K(J)) for J = 1,2,...,N.
  46.  
  47.  
  48. AAAARRRRGGGGUUUUMMMMEEEENNNNTTTTSSSS
  49.      FORWRD  (input) LOGICAL
  50.              = .TRUE., forward permutation = .FALSE., backward permutation
  51.  
  52.      M       (input) INTEGER
  53.              The number of rows of the matrix X. M >= 0.
  54.  
  55.      N       (input) INTEGER
  56.              The number of columns of the matrix X. N >= 0.
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.                                                                         PPPPaaaaggggeeee 1111
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. DDDDLLLLAAAAPPPPMMMMTTTT((((3333SSSS))))                                                          DDDDLLLLAAAAPPPPMMMMTTTT((((3333SSSS))))
  71.  
  72.  
  73.  
  74.      X       (input/output) DOUBLE PRECISION array, dimension (LDX,N)
  75.              On entry, the M by N matrix X.  On exit, X contains the permuted
  76.              matrix X.
  77.  
  78.      LDX     (input) INTEGER
  79.              The leading dimension of the array X, LDX >= MAX(1,M).
  80.  
  81.      K       (input) INTEGER array, dimension (N)
  82.              On entry, K contains the permutation vector.
  83.  
  84. SSSSEEEEEEEE AAAALLLLSSSSOOOO
  85.      INTRO_LAPACK(3S), INTRO_SCSL(3S)
  86.  
  87.      This man page is available only online.
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.                                                                         PPPPaaaaggggeeee 2222
  130.  
  131.  
  132.  
  133.